home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / gemfsc18.lzh / AESSRC18.LZH / AESFUNCS / FRMQERR.C < prev    next >
C/C++ Source or Header  |  1992-03-26  |  466b  |  23 lines

  1. /**************************************************************************
  2.  * FRMQERR.C - The frm_qerror() routine.
  3.  *************************************************************************/
  4.  
  5. #include <stdarg.h>
  6. #include "gemfast.h"
  7.  
  8. #ifndef NULL
  9.   #define NULL 0L
  10. #endif
  11.  
  12. int frm_qerror(err, fmt)
  13.     char *fmt;
  14. {
  15.     va_list args;
  16.     
  17.     va_start(args, fmt);
  18.     frm_verror(err, NULL, fmt, args);
  19.     va_end(args);
  20.     
  21.     return err;
  22. }
  23.